home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 30 / Mac Magazin and MacEasy Magazine CD - Issue 30.iso / utilities / Mac OS X / Flurry / Flurry source / Source Folder / Star.h < prev    next >
C/C++ Source or Header  |  2001-04-14  |  554b  |  25 lines

  1. // Star.h: interface for the Star class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_STAR_H__3400FF60_6AC1_11D4_8DF7_CE6AECD20E3C__INCLUDED_)
  6. #define AFX_STAR_H__3400FF60_6AC1_11D4_8DF7_CE6AECD20E3C__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class Star  
  13. {
  14. public:
  15.     void Update();
  16.     void Draw();
  17.     Star();
  18.     virtual ~Star();
  19.     float position[3];
  20.     bool ate;
  21.     float mystery;
  22. };
  23.  
  24. #endif // !defined(AFX_STAR_H__3400FF60_6AC1_11D4_8DF7_CE6AECD20E3C__INCLUDED_)
  25.